home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / mg2a_src.zip / VERSION.C < prev    next >
Text File  |  1988-08-23  |  412b  |  21 lines

  1. /*
  2.  * This file contains the string that get written
  3.  * out by the emacs-version command.
  4.  */
  5.  
  6. #define TRUE    1    /* include "def.h" when things get more complicated */
  7.  
  8. char version[] = "Mg 2a (formerly MicroGnuEmacs)";
  9.  
  10. /*
  11.  * Display the version. All this does
  12.  * is copy the version string onto the echo line.
  13.  */
  14. /*ARGSUSED*/
  15. showversion(f, n)
  16. int f, n;
  17. {
  18.     ewprintf(version);
  19.     return TRUE;
  20. }
  21.